projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5e5388f
)
(Fcurrent_time_zone): Cast isalnum() argument to
author
Gerd Moellmann
<gerd@gnu.org>
Tue, 9 Oct 2001 10:08:13 +0000
(10:08 +0000)
committer
Gerd Moellmann
<gerd@gnu.org>
Tue, 9 Oct 2001 10:08:13 +0000
(10:08 +0000)
unsigned char.
From Hallvard B Furuseth <h.b.furuseth@usit.uio.no>.
src/editfns.c
patch
|
blob
|
history
diff --git
a/src/editfns.c
b/src/editfns.c
index bb92f44381e6bc4c219a55c8c724bada4cb7c5ff..90be6ba4f21853d2a5cb4e6bb231f8eef22e8157 100644
(file)
--- a/
src/editfns.c
+++ b/
src/editfns.c
@@
-1780,7
+1780,7
@@
the data it can't find.")
/* On Japanese w32, we can get a Japanese string as time
zone name. Don't accept that. */
char *p;
- for (p = s; *p && (isalnum (*p) || *p == ' '); ++p)
+ for (p = s; *p && (isalnum (
(unsigned char)
*p) || *p == ' '); ++p)
;
if (p == s || *p)
s = NULL;